hostlist-parser 0.1.0

Parses hostlist expressions into a Vec of Strings
Documentation
1
2
3
4
5
6
7
8
9
10
11
---
source: src/lib.rs
expression: "parse(\"hostname[09-11]\")"
---
Ok(
    {
        "hostname09",
        "hostname10",
        "hostname11",
    },
)